home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / zapem-0.000 / zapem-0 / zapem / entity.h < prev    next >
C/C++ Source or Header  |  1995-02-22  |  251b  |  16 lines

  1. #ifndef ENTITY_H
  2. #define ENTITY_H
  3.  
  4. /* requires sprite.h, soul.h */
  5.  
  6. class
  7. Entity : public Sprite, public Soul
  8. {
  9. public:
  10.     Entity(int lives, int maxnrg, int value);
  11.         Entity(const Entity& p);
  12.         Entity& operator=(const Entity& p);
  13. };
  14.  
  15. #endif
  16.